home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / amiga / h_modu.a < prev    next >
Text File  |  1994-02-01  |  348b  |  24 lines

  1.  
  2.         ;   MODU.A
  3.         ;
  4.         ;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  5.         ;
  6.         ;   D0/D1 -> 32 signed modulus
  7.         ;   32/32 -> 32 signed modulus
  8.         ;
  9.         ;   HYPER module, cannot use pc-relative
  10.  
  11.         section text,code
  12.  
  13.         xdef    __modu
  14.         xdef    _hyper__modu
  15.         xref    __divu
  16.  
  17. _hyper__modu:
  18. __modu:     jsr    __divu
  19.         move.l    D1,D0        ; modulus return
  20.         rts
  21.  
  22.         END
  23.  
  24.